import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)
import seaborn as sns
# Input data files are available in the "../input/" directory.
# For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory
import os
activity = pd.read_csv('FitBit data.csv') # importing the dataset
import pandas_profiling
activity.profile_report() # seeing the full report about the dataset